home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 004 / gstobject / stack / Example / h / clib < prev    next >
Encoding:
Text File  |  1994-09-16  |  529 b   |  24 lines

  1. {***************************************************************************
  2.  
  3.     Title:     clib.h
  4.  
  5.         Purpose: Pascal prototypes for C Library routines
  6.  
  7.         Author:  George Taylor
  8.  
  9. ***************************************************************************}
  10.  
  11. #ifndef __CLIB
  12. #define __CLIB
  13.  
  14. (* exit *)
  15. #define EXIT_SUCCESS 0
  16. #define EXIT_FAILURE 1
  17. procedure exit(returncode:integer); extern;
  18.  
  19. (* at exit *)
  20. type atexit_handler = ^procedure exit_handler;
  21. procedure atexit(exit_handler:atexit_handler):integer; extern;
  22.  
  23. #endif
  24.